* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
안녕하세요! 맥 유저입니다.
파이썬에서 pip install flask pymongo dnspython을 실행해도, 지속적으로
1) Import "flask" could not be resolved
2) Import "pymongo" could not be resolved
3) Import "certifi" could not be resolved
오류가 지속적으로 뜹니다... [4주차 프로젝트들부터 계속이요..]
from flask import Flask, render_template, request, jsonify app = Flask(__name__) from pymongo import MongoClient import certifi ca = certifi.where() client = MongoClient('mongodb+srv://sparta:test@cluster0.supeagv.mongodb.net/?retryWrites=true&w=majority', tlsCAFile=ca) db = client.dbsparta